Overview | Package | Class | Tree | Deprecated | Index | Help Java Platform
1.1.7
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

Interface com.sun.java.swing.tree.MutableTreeNode

Implementing Classes:
DefaultMutableTreeNode

public abstract interface MutableTreeNode
extends TreeNode

Method Summary
void insert(MutableTreeNode child, int index)
          Adds child to the receiver at index.
void removeFromParent()
          Removes the receiver from its parent.
void remove(int index)
          Removes the child at index from the receiver.
void remove(MutableTreeNode node)
          Removes node from the receiver.
void setParent(MutableTreeNode newParent)
          Sets the parent of the receiver to newParent.
void setUserObject(java.lang.Object object)
          Resets the user object of the receiver to object.
 

Method Detail

insert

public void insert(MutableTreeNode child,
                   int index)
Adds child to the receiver at index. child will be messaged with setParent.

remove

public void remove(int index)
Removes the child at index from the receiver.

remove

public void remove(MutableTreeNode node)
Removes node from the receiver. setParent will be messaged on node.

setUserObject

public void setUserObject(java.lang.Object object)
Resets the user object of the receiver to object.

removeFromParent

public void removeFromParent()
Removes the receiver from its parent.

setParent

public void setParent(MutableTreeNode newParent)
Sets the parent of the receiver to newParent.

Overview | Package | Class | Tree | Deprecated | Index | Help Java Platform
1.1.7
PREV CLASS | NEXT CLASS FRAMES  | NO FRAMES
SUMMARY:  INNER | FIELD | CONSTR | METHOD DETAIL:  FIELD | CONSTR | METHOD

Submit a bug or feature
Submit comments/suggestions about javadoc
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.
Copyright 1993-1998 Sun Microsystems, Inc. 901 San Antonio Road,
Palo Alto, California, 94303, U.S.A. All Rights Reserved.